.hamburger-menu {
    display: none;
}
            
.mobile-search-icon-container {
    display: none;
}

.mobile-news-article-heading-box {
    display: none;
}

#mobile-menu {
    display: none;
}
            
.mobile-financial-members-box {
    display: none;
}
            
.search-overlay {
    display: none;
}

.mobile-search-box-container {
    display: none;
}
            
@media only screen and (max-width: 920px) {
    .side-box {
        display: none;
    }
    
    .news-article {
        margin: 20px auto 0 auto;
        float: none;
    }
    
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center; 
        width: 30px;
        height: 30px;
    }
    
    .hamburger-menu:hover {
        cursor: pointer;
    }
    
    .hamburger-line {
        width: 100%;
        height: 2px;
        background-color: white;
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.1s ease, transform 0.2s ease;
    }
    
    banner {
        justify-content: space-between;
        width: calc(100% - (2*20px));  /* 100% - 2 * padding(banner) */
        padding: 20px 20px 200px 20px;
    }
    
    #mobile-menu {
        display: flex;
        justify-content: flex-end;
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 0;
        background-color: cadetblue;
        z-index: 4;
        -webkit-transition: height 0.3s ease;
        transition: height 0.3s ease;
    }
    
    .navbar {
        display: none;
    }
    
    .search-box-container {
        display: none;
    }
    
    .mobile-search-icon-container {
        display: block;
        height: 30px;
        margin-right: 30px;
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }
    
    .mobile-search-icon-container:hover {
        cursor: pointer;
    }
    
    .mobile-search-icon {
        height: 100%;
    }
    
    .links-and-search-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        height: 80%;
        width: -webkit-min-content;
    }
    
    .content {
        position: relative;
        padding: 20px 8px 25px 8px;
        width: calc(100% - 2 * 8px); /* 100% - padding(content) */
        z-index: 3;   
    }
    
    .content.normal-page {
        /*min-height: calc(100vh);*/
        /* 100vh - height(banner) - height(footer) - padding-top(banner) - diff_between_neg_content_margin_&_banner_padding - padding(content) - margin-bottom(content)*/
    }
    
    .mobile-links-list {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .mobile-financial-members-box {
        display: flex;
        width: calc(100% - 2 * 8px); /* 100% - 2 * padding(self) */
        justify-content: space-around;
        align-items: center;
        border-radius: 2px;
        box-shadow: 0 4px 8px 0 rgba(30, 30, 30, 0.1), 0 8px 30px 0 rgba(30, 30, 30, 0.1);
        padding: 8px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .mobile-financial-members-box .side-box-img{
        margin: 0;
        display: block;
        width: 100%
    }
    
    .mobile-financial-members-box a {
        width: 20%;
    }
    
    .mobile-search-box-container {
        display: flex;
        align-items: center;
        width: 0px;
        height: 80%;
        overflow: hidden;
        -webkit-transition: width 0.3s ease;
        transition: width 0.3s ease;
    }
    
    .mobile-search-form {
        width: 100%;
    }
    
    .mobile-search-input {
        width: calc(100% - 2 * 4px);
        border: none;
        background-color: rgba(0, 0, 0, 0.08);
        font-size: 20px;
        color: white;
        padding: 4px;
        border-radius: 5px;
    }
    
    .slide-image:hover { /* this animation is removed on touch screens*/
        transform: scale(1.0, 1.0);
    }
}
            
@media only screen and (max-width: 650px) {
    .title-text-container {
        display: none;
    }
    
    banner {
        height: 80px;
    }
    
    .scroll-down-content {
        width: 98%;
    }
    
    .news-article {
        margin-top: 20px;
        width: 100%;
        height: calc((0.98*100vw - 2*8px) * (337/600));
    }
    
    /* These next two definitions remove the pull up animation on small mobiles */
    .news-article-heading-box {
        display: none;
    }
    
    .mobile-news-article-heading-box {
        display: block;
        background-color: rgba(30, 30, 30, 0.85);
        position: absolute;
        bottom: 0px;
        width: calc(100% - 2*12px);
        padding: 7px 12px 7px 12px;
        margin: 0px;
        -webkit-font-smoothing: antialiased;   /* Fixes this issue https://bit.ly/2KcVFJP*/
        border-top: 1px solid #E11C1A;
    }
    
    .news-heading-text {
        font-size: 20px;
    }
}
            
@media only screen and (max-width: 920px) and (min-height: 900px) { /* is the user holding a tablet/phone in portrait mode basically */
    #slider { /* WARNING: This means that the slideshow.css link must be specified before this css or else the css will break */
        height: 40vh;
    }
}
